home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / PGM_TOOL / PREVIEW / CLP2DLFI / TODELPHI.DPR < prev    next >
Text File  |  1995-10-28  |  509b  |  23 lines

  1. program Todelphi;
  2.  
  3. uses
  4.   Forms,
  5.   Nudelphi in 'NUDELPHI.PAS' {db2dl},
  6.   Commoncode in 'COMCODE.PAS',
  7.   wPreview in 'WPREVIEW.PAS',
  8.   DBFserver in 'DBSERVER.PAS',
  9.   wAboutbx in 'WABOUTBX.PAS' {SetupBox},
  10.   Wynform in 'WYNFORM.PAS' {ynform},
  11.   wDL in 'DL.PAS',
  12.   wDL2 in 'DL2.PAS',
  13.   Dlmain in 'DLMAIN.PAS' {mainwin},
  14.   Winbrows in 'WINBROWS.PAS' {WinBrowse},
  15.   wSelPrn in 'WSELPRN.PAS' {WinBrowse};
  16.  
  17. {$R *.RES}
  18.  
  19. begin
  20.   Application.CreateForm(Tmainwin, mainwin);
  21.   Application.Run;
  22. end.
  23.